197ca4f77967533e58c433ac061e472c9c66bd2b,app/src/main/java/com/seizonsenryaku/hayailauncher/StatusBarColorHelper.java,StatusBarColorHelper,setStatusBarColor,#Resources#Activity#number#,16
Before Change
if(Build.VERSION.SDK_INT > Build.VERSION_CODES.LOLLIPOP) {
//window.setStatusBarColor(Color.TRANSPARENT);
}
if(Build.VERSION.SDK_INT > 11) {
window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
window.getDecorView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
}
int statusBarHeight = getStatusBarHeight(resources);
After Change
window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
window.getDecorView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
int statusBarHeight = getStatusBarHeight(resources);